[PHP] Keeping track of file dependencies across multiple files in a medium-size project
Posted
by Goro
on Stack Overflow
See other posts from Stack Overflow
or by Goro
Published on 2010-04-01T19:03:33Z
Indexed on
2010/04/01
19:23 UTC
Read the original article
Hit count: 370
Hello,
My PHP code is split between many files, and often I find myself using code like this this:
require_once( "$preIP/functions.php" );
The problem is that I have to keep using this a lot, and sometimes these statements are becoming redundant.
What kind of system do yo use/would recommend for keeping track of all the inter-dependencies in all the PHP files?
© Stack Overflow or respective owner